home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 92 / CDMM92_1.ISO / SOF 2 SDK / sof2sdk-101.msi / _92D6AC311BB48EBA344BBABC89DA6AB0 / _40F6E33B4A564CE390629EE4DE8EEFA6 < prev    next >
Encoding:
Text File  |  2002-06-05  |  1.7 KB  |  99 lines

  1. @set include=
  2. @del /q debug\base\mp\vm
  3. @cd game
  4. call game.bat
  5. @cd ..\cgame
  6. call cgame.bat
  7. @cd ..\ui
  8. call ui.bat
  9. @cd ..\gametype\gt_ctf
  10. call gt_ctf.bat
  11. @cd ..\gt_inf
  12. call gt_inf.bat
  13. @cd ..\gt_elim
  14. call gt_elim.bat
  15. @cd ..\gt_dem
  16. call gt_dem.bat
  17. @cd ..\gt_dm
  18. call gt_dm.bat
  19. @cd ..\gt_tdm
  20. call gt_tdm.bat
  21. @cd ..\..
  22.  
  23. @echo off
  24. echo .
  25. echo .
  26.  
  27. set bad = 0
  28. if not exist "game\vm\sof2mp_game.qvm" goto badGame
  29. :testcgame
  30. if not exist "cgame\vm\sof2mp_cgame.qvm" goto badCGame
  31. :testui
  32. if not exist "ui\vm\sof2mp_ui.qvm" goto badUI
  33. :testdm
  34. if not exist "gametype\gt_dm\vm\gt_dm.qvm" goto badDM
  35. :testtdm
  36. if not exist "gametype\gt_tdm\vm\gt_tdm.qvm" goto badTDM
  37. :testctf
  38. if not exist "gametype\gt_ctf\vm\gt_ctf.qvm" goto badCTF
  39. :testinf
  40. if not exist "gametype\gt_inf\vm\gt_inf.qvm" goto badINF
  41. :testdem
  42. if not exist "gametype\gt_dem\vm\gt_dem.qvm" goto badDEM
  43. :testelim
  44. if not exist "gametype\gt_elim\vm\gt_elim.qvm" goto badELIM
  45. if %bad == "0" goto goodBuild
  46. goto end
  47.  
  48. :badGame
  49. echo ***** SoF2MP_game.qvm did not build!
  50. set bad = 1
  51. goto testcgame
  52.  
  53. :badCGame
  54. echo ***** SoF2MP_cgame.qvm did not build!
  55. set bad = 1
  56. goto testui
  57.  
  58. :badUI
  59. echo ***** SoF2MP_ui.qvm did not build!
  60. set bad = 1
  61. goto end
  62.  
  63. :badDM
  64. echo ***** gt_dm.qvm did not build!
  65. set bad = 1
  66. goto end
  67.  
  68. :badTDM
  69. echo ***** gt_tdm.qvm did not build!
  70. set bad = 1
  71. goto end
  72.  
  73. :badCTF
  74. echo ***** gt_ctf.qvm did not build!
  75. set bad = 1
  76. goto end
  77.  
  78. :badINF
  79. echo ***** gt_inf.qvm did not build!
  80. set bad = 1
  81. goto end
  82.  
  83. :badELIM
  84. echo ***** gt_elim.qvm did not build!
  85. set bad = 1
  86. goto end
  87.  
  88. :badDEM
  89. echo ***** gt_dem.qvm did not build!
  90. set bad = 1
  91. goto end
  92.  
  93. :goodBuild
  94. echo VMs were built successfully!
  95.  
  96. :end
  97. echo .
  98. echo .
  99.